[PATCH 11/12] md: convert cpu notifier to return encapsulate errno value

By the previous modification, the cpu notifier can return encapsulate
errno value. This converts the cpu notifiers for raid5.

Signed-off-by: Akinobu Mita <akinobu.mita [at] gmail.com>
Cc: Neil Brown <neilb [at] suse.de>
Cc: linux-raid [at] vger.kernel.org
---
drivers/md/raid5.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c
index 70ffbd0..a711ba3 100644
--- a/drivers/md/raid5.c
+++ b/drivers/md/raid5.c
[at] [at] -4659,7 +4659,7 [at] [at] static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
kfree(percpu->scribble);
pr_err("%s: failed memory allocation for cpu%ld\n",
__func__, cpu);
- return NOTIFY_BAD;
+ return notifier_from_errno(-ENOMEM);
}
break;
case CPU_DEAD:
--
1.6.0.6

--
To unsubscribe from this list: send the line "unsubscribe linux-raid" in
the body of a message to majordomo [at] vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Akinobu Mita [ Do, 18 März 2010 10:05 ] [ ID #2035511 ]
Linux » gmane.linux.raid » [PATCH 11/12] md: convert cpu notifier to return encapsulate errno value

Vorheriges Thema: Possibility for a parallel relaxed RAID?
Nächstes Thema: Utility of IOATDMA for RAID5.